home *** CD-ROM | disk | FTP | other *** search
- ; Script to install libraries from this disk into your current
- ; LIBS: directory.
-
- Echo " "
- Echo "This script will install three libraries into your current"
- Echo "LIBS: directory which are used by the Rend24 program."
- Echo "They are hame.library, dctv.library, and arp.library."
- Echo " "
- Echo "Arp.library is required for Rend24's built-in front end."
- Echo "Hame.library is required to render HAM-E images."
- Echo "Dctv.library is required to render DCTV images."
- Echo " "
-
- Ask "Do you want to install these libraries? "
-
- If WARN
- Copy :Libs/#?.library LIBS:
- Echo "Library installation complete."
- Else
- Echo "Libraries not installed."
- EndIf
-
- Echo " "
- Echo "Rend24 may now be run directly from Workbench. You can"
- Echo "put it anywhere you like by simply dragging its icon to"
- Echo "a drawer on, for example, your hard drive. If you plan"
- Echo "on running Rend24 from CLI a lot, you might consider"
- Echo "placing it in your C: directory."
- Echo " "
- Echo "Would you like to copy the Rend24 program to your"
- Ask "C: directory? "
-
- If WARN
- ; Copy programs to C: directory.
- Copy :Rend24 C:
- Copy :Rend24.info C:
- Echo "Program copy complete."
- Else
- Echo "Programs not copied."
- EndIf
-
- Echo " "
-